System.IO.UnmanagedMemoryAccessor.WriteArray 方法

方法描述

将结构从 T 类型的数组写入访问器。

语法定义(C# System.IO.UnmanagedMemoryAccessor.WriteArray 方法 的用法)

public void WriteArray(
	long position,
	T[] array,
	int offset,
	int count
)
where T : struct, new()

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
position System-Int64 访问器中起始写入位置的字节偏移量。
array T[] 要写入访问器的数组。
offset System-Int32 在 array 中从其开始写入的索引。
count System-Int32 要写入的 array 中的结构数。
返回值 void

提示和注释

System.IO.UnmanagedMemoryAccessor.WriteArray 方法例子


异常

异常 异常描述
ArgumentException 取值函数的 position 后面没有足够的字节数可供写入 count 所指定数量的结构。
ArgumentOutOfRangeException
  • position 小于零或大于访问器的容量。
  • offset 或 count 小于零。
ArgumentNullException array 为 null。
NotSupportedException 访问器不支持写入。
ObjectDisposedException 已释放访问器。

命名空间

namespace: System.IO

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4 .NET Framework Client Profile 受以下版本支持:4

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。